home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / prefs / input.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  1KB  |  63 lines

  1. #ifndef PREFS_INPUT_H
  2. #define PREFS_INPUT_H 1
  3. /*
  4. ** input.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/03/95
  11. **
  12. **
  13. */
  14.  
  15. /*
  16. ** This are the StructPointer defines for input.h
  17. */
  18. #ifndef InputPrefsPtr
  19. #define InputPrefsPtr ADDRESS
  20. #endif
  21. /*
  22. ** End of StructPointer defines for input.h
  23. */
  24.  
  25.  
  26. /*****************************************************************************/
  27.  
  28.  
  29. #ifndef EXEC_TYPES_H
  30. #include <exec/types.h>
  31. #endif
  32.  
  33. #ifndef LIBRARIES_IFFPARSE_H
  34. #include <libraries/iffparse.h>
  35. #endif
  36.  
  37. #ifndef DEVICES_TIMER_H
  38. #include <devices/timer.h>
  39. #endif
  40.  
  41.  
  42. /*****************************************************************************/
  43.  
  44.  
  45. #define ID_INPT 1229869140 
  46.  
  47.  
  48. STRUCT InputPrefs
  49.  
  50.     STRING ip_Keymap SIZE 16  
  51.     SHORTINT      ip_PointerTicks 
  52.     timeval ip_DoubleClick 
  53.     timeval ip_KeyRptDelay 
  54.     timeval ip_KeyRptSpeed 
  55.     SHORTINT       ip_MouseAccel 
  56. END STRUCT 
  57.  
  58.  
  59. /*****************************************************************************/
  60.  
  61.  
  62. #endif /* PREFS_INPUT_H */
  63.